Namespace - LJCNetCommon
Parameters
x - The compare object.
y - The compare to object.
Returns
The integer that indicates the order relationship of the objects.
Syntax
C# |
public static Int32 CompareNull(Object x, Object y)
|
Compare null values. (DE)
Remarks
-2 - Neither object is null.
-1 - Null object x precedes object y.
0 - Object x and object y are both null.
1 - Object x follows null object y.
Example
C# |
using System;
using LJCNetCommon;
<span class='xmlComment'>/// <summary>
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.